home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 173 / Issue 173 - Jul 2002 - DPCS0702.iso / editorial / Python / Python-2.2.1.exe / TEST_FUTURE3.PY < prev    next >
Encoding:
Python Source  |  2001-08-20  |  193 b   |  12 lines

  1. from __future__ import nested_scopes
  2. from __future__ import division
  3. from __future__ import nested_scopes
  4.  
  5. def f(x):
  6.     def g(y):
  7.         return y // x
  8.     return g
  9.  
  10.  
  11. print f(2)(5)
  12.